home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / window / winclip / exam106.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-12  |  214 b   |  9 lines

  1.   #include "window.h"
  2.   int i = 3;
  3.   double j = 5.6;
  4.   main()
  5.   {
  6.     WindowInitializeSystem();
  7.     VideoPrintf("3+2 is equal to %d\n",3+2);
  8.     VideoPrintf("i is equal to %d\nj is equal to %lf\n",i,j);
  9.   }